home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 2 / MacMania 2.toast / Demo's / Tools&Utilities / ShowPages 1.4.1 / bbfig1.14 / bbfig < prev    next >
Encoding:
Text File  |  1993-05-14  |  470 b   |  23 lines  |  [TEXT/ttxt]

  1. #! /bin/sh
  2.  
  3. # Script to stick bounding box finder in front of a postscript file
  4. #    Adapted from Ned's original
  5.  
  6. # $Header: bbfig,v 1.3 90/06/27 21:54:49 cosell Exp $
  7.  
  8. # BBPSDIR=<wherever>  # Define this if bb.ps doesn't live in same
  9.                       #   directory as bbfig
  10.  
  11. if [ ! -f ${BBPSDIR=`dirname $0`}/bb.ps ]
  12. then
  13.     echo >&2 "Can't locate bb.ps"
  14.     exit 1
  15. fi
  16.  
  17. case $# in
  18.     0)    cat $BBPSDIR/bb.ps -
  19.       ;;
  20.     *)    cat $BBPSDIR/bb.ps "$@"
  21.       ;;
  22. esac
  23.